home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000327_news@columbia.edu _Tue Feb 20 09:46:22 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id JAA18502
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 20 Feb 2001 09:46:22 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA16323
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 20 Feb 2001 09:46:21 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id JAA03065
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 20 Feb 2001 09:38:37 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Does pdial have a maximum length?
  14. Date: 20 Feb 2001 14:38:30 GMT
  15. Organization: Columbia University
  16. Message-ID: <96tvh6$2vm$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <3A91EF77.D5998E55@littlegreenapples.com>,
  20. Meng Kuan  <mengkuan@littlegreenapples.com> wrote:
  21. : I am trying to use ckermit to do alphanumeric paging. Where I am from,
  22. : the paging operators do not have a TAP/IXO service so I had to do a
  23. : manual conversion of the alphanumeric characters to dial-sequences. For
  24. : instance, the message 
  25. : "abcdefghijklmnopqrstuvwxyz" 
  26. : is converted into
  27. : "2122233132334142435152536162637172737481828391929394".
  28. : If I use a shorter message (e.g. "abcdef") there is no problem. However,
  29. : if I have a message longer than 17 characters, pdial always truncates it
  30. : when it does the actual dialling.
  31. : A sample of a failed dialing attempt is included below. Note that the
  32. : "Dial string" shown below was not truncated but the pdial command was.
  33. : The script that I use is a modified version of alphapage script found
  34. : here:
  35. : ftp://kermit.columbia.edu/kermit/scripts/ckermit/alphapage
  36. : Some other information about my setup:
  37. : ckermit version: 7.0.196, 1 Jan 2000, for Linux
  38. : server: debian potato on i386 platform
  39. : I have gone over the online documetation and FAQs but to no avail. If
  40. : anyone has any clues for the following questions I will be most
  41. : grateful. Is there a maximum length to the number of digits pdial can
  42. : dial? If so, how can I increase it? Or are there some other settings
  43. : which I missed? 
  44. Kermit does not truncate the dial string.
  45.  
  46. :  Trying:
  47. : T9,93217086,,###,2122233132334142435152536162637172737481828391929394**;...
  48. :
  49. This message is printed by the dial module.  It shows the telephone
  50. number that was passed to it.  This is the number it dials.
  51.  
  52. : ...
  53. : ATX3
  54. : OK
  55. : ATS2=43S7=105
  56. : OK
  57. :  Dialing: 11:57:08...
  58. : ATDT9,93217086,,###,2122233132334142435152536162637172737
  59. :
  60. Now Kermit is sending commands to the modem.  What you see when DIAL
  61. DISPLAY is ON are the echoes from the modem.  The modem evidently has
  62. a short command buffer, and drops the characters that don't fit.
  63. The solution is to break the long number into multiple PDIALs.
  64.  
  65. - Frank